type runtime.gcTrigger

13 uses

	runtime (current package)
		arena.go#L812: 	if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
		malloc.go#L1243: 		if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
		malloc.go#L1345: 		if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
		malloc.go#L1436: 		if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
		malloc.go#L1529: 		if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
		malloc.go#L1603: 	if t := (gcTrigger{kind: gcTriggerHeap}); t.test() {
		mgc.go#L514: 	gcStart(gcTrigger{kind: gcTriggerCycle, n: n + 1})
		mgc.go#L588: type gcTrigger struct {
		mgc.go#L616: func (t gcTrigger) test() bool {
		mgc.go#L643: func gcStart(trigger gcTrigger) {
		mgcpacer.go#L386: func (c *gcControllerState) startCycle(markStartTime int64, procs int, trigger gcTrigger) {
		proc.go#L379: 		gcStart(gcTrigger{kind: gcTriggerTime, now: nanotime()})
		proc.go#L6365: 		if t := (gcTrigger{kind: gcTriggerTime, now: now}); t.test() && forcegc.idle.Load() {